05. The Engine
The Engine Heading
The Engine
ND004 C01 L03 05 The Engine
The Engine Recap
Takeaways
The Engine
- 1 of 3 main layers for how you may choose to interact with the database.
- Is the lowest level layer of interacting with the database, and is much like using the DBAPI directly. Very similar to using psycopg2, managing a connection directly.
Moreover,
- The Engine in SQLAlchemy refers to both itself, the Dialect and the Connection Pool, which all work together to interface with our database.
- A connection pool gets automatically created when we create a SQLAlchemy engine.
Resources
The Engine Quiz
SOLUTION:
DBAPIThe Engine Quiz 2